home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / do_install < prev    next >
Encoding:
Text File  |  1992-06-25  |  759 b   |  35 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. crack_arch=$1
  13.  
  14. ###
  15. # Is there a binaries directory ?
  16. ###
  17.  
  18. if [ ! -d $crack_arch ]
  19. then
  20.     mkdir $crack_arch || exit 1
  21. fi
  22.  
  23. cd $crack_arch || exit 1                        # Can we get there from here ?
  24.  
  25. ###
  26. # Install makefiles in our directory if necessary.
  27. ###
  28.  
  29. if [ ! -f Makefile ]
  30. then
  31.     cp $CRACK_HOME/Scripts/install.mf Makefile || exit 1
  32. fi
  33.  
  34. exit 0
  35.